home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 3.iso
/
toolbox
/
src
/
demos
/
audio
/
Makefile
< prev
next >
Wrap
Makefile
|
1996-11-11
|
1KB
|
43 lines
SHELL = /bin/sh
LIBC++ = /usr/lib/libC.so
LIBINVENTOR= /usr/lib/libInventor.so
all:
if [ -r ${LIBC++} -a -r ${LIBINVENTOR} ] ; then \
(cd drive ; $(MAKE) ); \
else \
echo ========== ; \
echo \ \ \ \ No C++ and/or Inventor library\(s\) installed--cannot compile drive ; \
echo \ \ \ \ check to see which libraries--/usr/lib/{libC.a,libInventor.a} ; \
echo \ \ \ \ are not installed and then get/load the \"c++\" and/or \"inventor_dev\" software option\(s\) ; \
echo ========== ; \
fi
if [ -r ${LIBC++} ] ; then \
(cd amesh ; $(MAKE) ) ; \
else \
echo ========== ; \
echo \ \ \ \ No C++ library installed--cannot compile amesh ; \
echo \ \ \ \ get/load the \"c++\" software option ; \
echo ========== ; \
fi
cd ameshC ; $(MAKE)
cd bz; $(MAKE)
cd synthia; $(MAKE)
clean:
cd amesh; $(MAKE) clean
cd ameshC; $(MAKE) clean
cd bz; $(MAKE) clean
cd drive; $(MAKE) clean
cd synthia; $(MAKE) clean
clobber:
cd amesh; $(MAKE) clobber
cd ameshC; $(MAKE) clobber
cd bz; $(MAKE) clobber
cd drive; $(MAKE) clobber
cd synthia; $(MAKE) clobber